BenSelect Documentation
Questions - Disqualify, Try Again and Not Covered
Send Feedback
JScript Examples > JScript for Questions > Questions - Disqualify, Try Again and Not Covered

Glossary Item Box

Use this script for the conditions of disqualify, try again, and not covered.

 

Event.Value = false;

var questions = new Array("BMCI_707_AIDS");

//--------------------------------------------------------------------------

---------------------------

var showDisqualifyQuestion = false;

var showTryAgainQuestion = false;

var showNotCoveredPeopleQuestion = false;

for (var index in questions) {

var question = questions[index];

var employeeDisqualified = false;

var spouseDisqualified = false;

var childrenCoveredNumber = 0;

var childrenDisqualifiedNumber = 0;

var isCurrentPersonDisqualified = false;

for (var ap in Event.Application.ApplicationPersons) {

var answer = Event.GetAnswer(ap.Person, question);

if (ap.Person.RelationshipID == 'Employee' && answer == 'True') {

employeeDisqualified = true;

}

if (ap.Person.RelationshipID == 'Spouse' && answer == 'True') {

spouseDisqualified = true;

}

if (ap.Person.RelationshipID == 'Child') {

childrenCoveredNumber = childrenCoveredNumber + 1;

if (answer == 'True') {

childrenDisqualifiedNumber = childrenDisqualifiedNumber + 1;

}

}

if (ap.Person.PersonID == Event.CurrentPerson.PersonID && answer ==

'True') {

isCurrentPersonDisqualified = true;

}

}

//Disqualify Question

if ((Event.Application.CoverageTypeID == 'EmployeeOnly' &&

employeeDisqualified)

|| (Event.Application.CoverageTypeID == 'Employee_Spouse' &&

employeeDisqualified)

|| (Event.Application.CoverageTypeID == 'Employee_Children' &&

employeeDisqualified)

|| (Event.Application.CoverageTypeID == 'Family' &&

employeeDisqualified)

|| (Event.Application.CoverageTypeID == 'SpouseOnly' &&

spouseDisqualified)

) {

showDisqualifyQuestion = true;

showTryAgainQuestion = false;

showNotCoveredPeopleQuestion = false;

}

//TryAgain

if (

(Event.Application.CoverageTypeID == 'Employee_Spouse' &&

spouseDisqualified)

|| (Event.Application.CoverageTypeID == 'Employee_Children' && (childrenCoveredNumber == childrenDisqualifiedNumber))

|| (Event.Application.CoverageTypeID == 'Family' && ( spouseDisqualified || ( childrenCoveredNumber == childrenDisqualifiedNumber

) ) )

) {

showTryAgainQuestion = !showDisqualifyQuestion;

showNotCoveredPeopleQuestion = false;

}

//NotCovered

if (isCurrentPersonDisqualified) {

showNotCoveredPeopleQuestion = !showDisqualifyQuestion && !showTryAgainQuestion;

}

}

//--------------------------------------------------------------------------

//Uncomment each for whatever question you are building.

//Use this script if it is Disqualify question type.

//Event.Value = showDisqualifyQuestion;

//Use this script if it is a try again question.

//Event.Value = showTryAgainQuestion;

//Use this script if it is not a covered people question.

//Event.Value = showNotCoveredPeopleQuestion; 

©2024. All Rights Reserved.